home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00033_MemberAnimation.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.5 KB  |  206 lines

  1. --
  2. -- MemberAnimation
  3. --
  4. -- manage animations based on a member rather than a sprite.
  5.  
  6. -- final animation list will be as follows:
  7. -- [[#memberName.castLibName:[1:[#mNum:num, #cNum:num, #loc:point],2:[...], ...],member.castLib:[...]]
  8.  
  9.  
  10.  
  11. property ancestor
  12.  
  13. -- constants:
  14. property animationListMember  -- the field containing the list.
  15. property animationSprite  -- the sprites containing the animation information
  16. property animationRate
  17.  
  18. -- the list of member animations:
  19. property memberAnimations
  20.  
  21.  
  22. on new me
  23.   -- set the constants:
  24.   set animationListMember = "animationLists"
  25.   set animationSprite = 1
  26.   set animationRate = .25
  27.   
  28.   set ancestor = new (script "GraphTool")
  29.   
  30.   set memberAnimations = [:]
  31.   
  32.   return me
  33. end
  34.  
  35.  
  36. on destruct me
  37.   if objectP (ancestor) then destruct (ancestor)
  38.   set ancestor = 0
  39. end
  40.  
  41.  
  42. -- animate a list of sprites simultaneously
  43. -- relative to their current screen location.
  44.  
  45. on animateSprites me, spriteLst
  46.   -- puppet all of us to true
  47.   -- and get original sprite member information:
  48.   set startInfoLst = [:]
  49.   set workingSpriteLst = [:]
  50.   repeat with spr in spriteLst
  51.     if weHaveAnimation (me, spr) then
  52.       puppetSprite spr, TRUE
  53.       addProp (startInfoLst, spr, getAnimSpriteInfo (me, spr))
  54.       addProp (workingSpriteLst, spr, getAnimName (me, spr))
  55.     end if
  56.   end repeat
  57.   
  58.   -- run the animations:
  59.   if count (workingSpriteLst) then 
  60.     set tot = getLongestAnim (me, workingSpriteLst)
  61.     repeat with i = 1 to tot
  62.       setAnimFrame (me, workingSpriteLst, startInfoLst, i)
  63.       updateStage
  64.       wait (me, animationRate)
  65.     end repeat
  66.   end if
  67.   
  68.   -- return sprites to their original states:
  69.   set tot = count (startInfoLst)
  70.   repeat with i = 1 to tot
  71.     set spr = getPropAt (startInfoLst, i)
  72.     set rec = getProp (startInfoLst, spr)
  73.     setAnimSpriteInfo (me, spr, rec)
  74.   end repeat
  75.   updateStage
  76. end
  77.  
  78.  
  79.  
  80. -- add animations to the master list of member animations:
  81. -- list passed is formatted as follows: [#memberName:memberNum, #memberName:memberNum, ... ]
  82. -- cNum is the castLibNum for the list of animations.
  83.  
  84. on addAnimations me, cNum, lst
  85.   -- get the starting frame so that you can return to it later:
  86.   set startFrame = the frame
  87.   
  88.   if not listP (memberAnimations) then set memberAnimations = [:]
  89.   
  90.   set cName = the name of castLib cNum -- the name of the current cast library
  91.   repeat with m = 1 to count (lst)
  92.     set mName = string(getPropAt (lst, m))
  93.     set mNum = getAProp (lst, m)
  94.     
  95.     set prop = string (mName & "." & cName)
  96.     -- if a layout for this animation exists, then create a rec and store it.
  97.     if label (prop) then 
  98.       set animRec = getMemberAnimation (me, prop)
  99.       addProp (memberAnimations, value ("#" & prop), animRec)
  100.     end if
  101.   end repeat
  102.   
  103.   -- store it:
  104.   makeField (me, animationListMember, memberAnimations)
  105.   
  106.   -- return to your starting frame:
  107.   go frame startFrame
  108. end
  109.  
  110.  
  111. -- get a member animation record from a series of frames.
  112. -- return a prop list as follows:
  113. -- [1:[#mNum:num, #cNum:num, #loc:point], 2:[#mNum:num, #cNum:num, #loc:point], ... ]
  114.  
  115. on getMemberAnimation me, stFrame
  116.   set rec = [:]
  117.   -- go to that animation layout sequence in the score:
  118.   go stFrame
  119.   set i = 1
  120.   
  121.   repeat while the type of sprite 1 <> 0
  122.     -- gather information for that animation frame:
  123.     addProp (rec, i, getAnimSpriteInfo (me, animationSprite))
  124.     set i = i + 1
  125.     go the frame + 1
  126.   end repeat
  127.   
  128.   return rec
  129. end
  130.  
  131.  
  132. -- return the largest number of frames in an animation:
  133.  
  134. on getLongestAnim me, spriteLst
  135.   set num = 0
  136.   set tot = count (spriteLst)
  137.   repeat with i = 1 to tot
  138.     set spr = getPropAt (spriteLst, i)
  139.     set prop = getAnimName (me, spr)
  140.     set tmpLst = getaProp (memberAnimations, prop)
  141.     if not voidP (tmpLst) then
  142.       set c = count (tmpLst)
  143.       if c > num then set num = c
  144.     end if
  145.   end repeat
  146.   return num
  147. end
  148.  
  149.  
  150. -- check to see if we have an animation in the master record:
  151.  
  152. on weHaveAnimation me, spr
  153.   set name = getAnimName (me, spr)
  154.   if voidP (getAProp (memberAnimations, name)) then return 0
  155.   else return 1
  156. end
  157.  
  158.  
  159.  
  160.  
  161. on getAnimName me, spr
  162.   return string(the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr & "." & the name of castLib the castLibNum of sprite spr)
  163. end
  164.  
  165.  
  166.  
  167. -- make changes to sprites in spriteLst for the current frame:
  168.  
  169. on setAnimFrame me, spriteLst, startInfoLst, frameNum
  170.   set tot = count (spriteLst)
  171.   repeat with i = 1 to tot
  172.     -- get next sprite number:
  173.     set spr = getPropAt (spriteLst, i)
  174.     -- get next memberAnimation name
  175.     set name = getProp (spriteLst, spr)
  176.     -- get the current frame member record:
  177.     set workingAnim = getaProp (memberAnimations, name)
  178.     -- get the sprite's starting information rec:
  179.     set startInfoRec = getaProp (startInfoLst, spr)
  180.     set offSetLoc = getaProp (startInfoRec, #loc)
  181.     if not voidP (workingAnim) then
  182.       setAnimSpriteInfo (me, spr, getaProp (workingAnim, frameNum), offSetLoc)
  183.     end if
  184.   end repeat
  185. end
  186.  
  187.  
  188. -- get information from an animation sprite in the current frame:
  189.  
  190. on getAnimSpriteInfo me, spr
  191.   return [#mNum:(the memberNum of sprite spr), #cNum:(the castLibNum of sprite spr), #loc:(the loc of sprite spr)]
  192. end
  193.  
  194.  
  195. -- set information from an animation sprite record:
  196.  
  197. on setAnimSpriteInfo me, spr, rec, locOffSet
  198.   if voidP (rec) then return
  199.   if voidP (locOffSet) then set locOffSet = point (0,0)
  200.   else set locOffSet = (locOffSet - point (320,240))
  201.   puppetSprite spr, TRUE
  202.   set the memberNum of sprite spr = getProp (rec, #mNum)
  203.   set the castLibNum of sprite spr = getProp (rec, #cNum)
  204.   set the loc of sprite spr = getProp (rec, #loc) + locOffSet
  205. end
  206.